home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / httpd / conf / httpd.conf < prev    next >
Encoding:
Text File  |  1995-05-09  |  1.7 KB  |  61 lines

  1. # This is the main server configuration file. It is best to 
  2. # leave the directives in this file in the order they are in, or
  3. # things may not go the way you'd like. See URL http://hoohoo.ncsa.uiuc.edu/
  4. # for instructions.
  5.  
  6. # Do NOT simply read the instructions in here without understanding
  7. # what they do, if you are unsure consult the online docs. You have been
  8. # warned.  
  9.  
  10. # Rob McCool (comments, questions to httpd@ncsa.uiuc.edu)
  11. # OR webmaster@sco.com
  12.  
  13. # ServerType is inetd for SCO systems
  14.  
  15. ServerType inetd
  16.  
  17. # If you are running from inetd, go to "ServerAdmin".
  18.  
  19. # Port: The port the standalone listens to. For ports < 1023, you will
  20. # need httpd to be run as root initially.
  21.  
  22. Port 80
  23.  
  24. # If you wish httpd to run as a different user or group, you must run
  25. # httpd as root initially and it will switch.  
  26.  
  27. # User/Group: The name (or #number) of the user/group to run httpd as.
  28.  
  29. User root
  30. Group other
  31.  
  32. # ServerAdmin: Your address, where problems with the server should be
  33. # e-mailed.
  34.  
  35. ServerAdmin webmaster@sco.com
  36.  
  37. # ServerRoot: The directory the server's config, error, and log files
  38. # are kept in
  39.  
  40. ServerRoot /usr/local/etc/httpd
  41.  
  42. # ErrorLog: The location of the error log file. If this does not start
  43. # with /, ServerRoot is prepended to it.
  44.  
  45. ErrorLog logs/error_log
  46.  
  47. # TransferLog: The location of the transfer log file. If this does not
  48. # start with /, ServerRoot is prepended to it.
  49.  
  50. TransferLog logs/access_log
  51.  
  52. # PidFile: The file the server should log its pid to
  53. PidFile logs/httpd.pid
  54.  
  55. # ServerName allows you to set a host name which is sent back to clients for
  56. #your server if it's different than the one the program would get (i.e. use
  57. #"www" instead of the host's real name).
  58.  
  59. #ServerName new.host.name
  60.  
  61.